home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Reverse Code Engineering RCE CD +sandman 2000
/
ReverseCodeEngineeringRceCdsandman2000.iso
/
RCE
/
Library
/
Manuels & Misc
/
Assembly
/
AOA.ZIP
/
CH06
/
EX6_5.IBM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-04
|
242 b
|
21 lines
#repetitions 1000000
#unravel 256
#code ("WITH EXCHANGE")
%init
mov ax, 346
mov bx, 450
%do
xchg ax, bx
#endcode
#code ("WITHOUT EXCHANGE")
%init
mov ax, 346
mov bx, 450
%do
mov dx, ax
mov ax, bx
mov bx, dx
#endcode
#end